home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / BASIC / 3687.ZIP / PIXSHOW.BI < prev    next >
Text File  |  1993-02-15  |  1KB  |  37 lines

  1. '******** PIXSHOW.BI (c) K.Willetts 1992/3 REGISTERED VERSSION *********
  2. 'Declarations for PIXSHOW function library for QuickBasic 4.X.
  3.  
  4. 'The user defined TYPE qpxheader is used to return image information.
  5. '*------------------------------------------------------------------*
  6.  
  7. TYPE qpxheader
  8.   videomode AS INTEGER      'Image videomode.
  9.   compression AS INTEGER    'Image compression type.
  10.   x AS INTEGER              'Image tlc x (horizontal) position.
  11.   y AS INTEGER              'Image tlc y (vertical) position.
  12.   x1 AS INTEGER             'Image brc x.
  13.   y1 AS INTEGER             'Image brc y.
  14.   firstparcel AS INTEGER    'Size of 1st. image parcel.
  15. END TYPE
  16.  
  17. 'declarations...
  18.  
  19. DECLARE FUNCTION getqpxinfo% (img AS qpxheader, qpxpath$)
  20. DECLARE SUB setqpxmode (vmnumber%)
  21. DECLARE FUNCTION setqpxbuffer% (bufaddr&)
  22. DECLARE SUB rlsqpxbuffer ()
  23. DECLARE FUNCTION showqpx% (tlcx%, tlcy%, resetpal%, vidonoff%, qpxpath$)
  24. DECLARE FUNCTION qkgetvidcard% ()
  25. DECLARE SUB qksetvidpage (pagenum%)
  26.  
  27. 'Following are Image Library related...
  28.  
  29. DECLARE FUNCTION registerqpl% (qplpath$)
  30. DECLARE SUB closeqpl ()
  31. DECLARE FUNCTION getqplinfo% (img AS qpxheader, imagename$)
  32. DECLARE FUNCTION showqpl% (tlcx%, tlcy%, resetpal%, vidonoff%, imagename$)
  33.  
  34. 'See manual Quick Reference chapters for more information.
  35. '*-------------------------------------------------------*
  36.  
  37.